blob: d67e96df103c0235a4534134f68c05c0fe0fcba2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
import { Suspense } from "react";
import { Skeleton } from "@/components/ui/skeleton";
import { Card, CardContent, CardHeader } from "@/components/ui/card";
import DolceUploadPageV2 from "./dolce-upload-page-v2";
import { Shell } from "@/components/shell";
import { useTranslation } from "@/i18n"
// ============================================================================
// 로딩 스켈레톤
// ============================================================================
function DolceUploadSkeleton() {
return (
<div className="space-y-4">
<Card>
<CardHeader>
<Skeleton className="h-8 w-48" />
</CardHeader>
<CardContent>
<Skeleton className="h-32 w-full" />
</CardContent>
</Card>
<Card>
<CardHeader>
<Skeleton className="h-8 w-48" />
</CardHeader>
<CardContent>
<Skeleton className="h-96 w-full" />
</CardContent>
</Card>
</div>
);
}
export default async function DolceUploadPageWrapper({
params,
searchParams,
}: {
params: Promise<{ lng: string }>;
searchParams: Promise<{ [key: string]: string | string[] | undefined }>;
}) {
const { lng } = await params;
const { t } = await useTranslation(lng, 'menu')
const resolvedParams = await searchParams;
return (
<Shell variant="fullscreen">
{/* 헤더 */}
<div className="flex items-center justify-between flex-shrink-0">
<div>
<h2 className="text-2xl font-bold tracking-tight">
{t('menu.vendor.engineering.document_list_ship')}
</h2>
</div>
</div>
{/* 메인 컨텐츠 */}
<Suspense fallback={<DolceUploadSkeleton />}>
<DolceUploadPageV2 searchParams={resolvedParams} />
</Suspense>
</Shell>
);
}
|